resource "aws_s3_bucket_website_configuration"
S3のStatic website hosting
ここ
で見た
code:tf
resource "aws_s3_bucket_website_configuration" "s3_bucket" {
bucket = aws_s3_bucket.s3_bucket.id
index_document {
suffix = "index.html"
}
error_document {
key = "error.html"
}
}